go/ast.IfStmt.If (field)

3 uses

	go/ast (current package)
		ast.go#L704: 		If   token.Pos // position of "if" keyword
		ast.go#L784: func (s *IfStmt) Pos() token.Pos         { return s.If }

	go/parser
		parser.go#L2152: 	return &ast.IfStmt{If: pos, Init: init, Cond: cond, Body: body, Else: else_}